====== HELLAWORLD ======


===== INTRODUCTION =====

HellaWorld est une interface web en PHP pour [[HellaNZB]]

===== 1. PREREQUIS =====

[[http://trac.cheezyblog.net/wiki/HellaWorldRequirements]]
    * Apache
    * PHP 5
    * [[Subversion]] (dans le cas d'une installation de ce type)
    * [[HellaNZB]] 

Voir les documentations [[lamp]] et [[lamp_bis]] pour l'installation d'apache et de PHP.

===== 2. INSTALLATION =====

==== Depuis l'archive tar.gz ====
cd /var/www/
wget http://cheezyblog.net/wp-content/uploads/2007/04/hellaworld-1.8.tar.gz
tar xvf hellaworld-1.8.tar.gz
mv config-sample.php config.php

==== Depuis subversion ====
cd /var/www/
mkdir hellaworld
svn co http://svn.cheezyblog.net/hellaworld/trunk/ hellaworld
mv config-sample.php config.php

===== 3. CONFIGURATION =====

Editer et adapter le config.php en fonction de votre configuration hellanzb.
''
        $config = array(
                'host'                  =>      'localhost',    // The address H                                             ellaNZB is running on.
                'port'                  =>      '8760',                 // The p                                             ort HellaNZB is listening on.
                'username'              =>      'hellanzb',             // This                                              is usually hardcoded as hellanzb and shouldnt need changing
                'password'              =>      'changeme',             // The p                                             assword specified in hellanzb.conf
                'showfinished'  =>      true,                   // Show finished                                              items, see README for details
                'language'              =>      'en_GB',                // The l                                             anguage code HellaWorld should use
        );
''
Laisser par défaut votre installation hellanzb n'a pas été personnalisée.


